home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d19 / tutfiles.arc / HARDTUT.ARC / HARD4 < prev    next >
Encoding:
Text File  |  1988-08-02  |  1.3 KB  |  23 lines

  1. Now let's write another file to the drive (this is where the fun starts).
  2. Let's suppose the  new file written to the drive is larger than the space
  3. left available by the  deleted File "Y". No problem, your system will use
  4. as much of the space left  open by "Y"  before moving on to the next open
  5. sectors (beyond "Z"), and then procede to complete the write request.
  6. (Keep in mind the drive uses any freespace it can find along the way,
  7. even though it may not be contiguous). Now we have the new file written,
  8. (File "A"). Our disk map now looks like this:
  9.  
  10. ┌──────────────────────────────────────────────────────────────────────────┐
  11. │XXXXXXXXXXXXXXXXXXXXXXXAAAAAAAAAAZZZZZZZZZZZZZZZZZZZZZZZZZZZZAAAAAAAAAAAAA│
  12. │AAAAAAAAAAA                                                               │
  13. │                                                                          │
  14. │                                                                          │
  15. │                                                                          │
  16. │                                                                          │
  17. └──────────────────────────────────────────────────────────────────────────┘
  18.  
  19. Notice how File "A" is now stored in NON-CONTIGUOUS sectors. This is what is
  20. known as FRAGMENTATION. "Fine" you say?....."So what?"......
  21.  
  22.  
  23.